home *** CD-ROM | disk | FTP | other *** search
/ Creative Computers / Creative Computers CD-ROM, Volume 1 (Legendary Design Technologies, Inc.)(1994).iso / shareware / music / delitracker_1.36 / rexx / dt_random.rexx < prev    next >
OS/2 REXX Batch file  |  1994-11-17  |  208b  |  19 lines

  1. /* DeliTracker - toggles random */
  2.  
  3. address 'rexx_DT'
  4.  
  5. options results
  6.  
  7.  
  8. status G rnd
  9.  
  10. if result == "no" then do
  11.     random yes
  12.     say "Random is now on..."
  13. end
  14. else do
  15.     random no
  16.     say "Random is now off..."
  17. end
  18.  
  19.